98aff2bc7af51b4c26b4b137f5971e8bdb0917c0,client/src/com/vaadin/client/ui/orderedlayout/Slot.java,Slot,setCaption,#String#String#List#String#boolean#boolean#boolean#,454
Before Change
captionWrap = null;
// Made changes to DOM. Focus can be lost if it was in the widget.
focusLost = widget.getElement().isOrHasChild(focusedElement);
}
// Caption text
After Change
captionWrap = null;
// Made changes to DOM. Focus can be lost if it was in the widget.
focusLost = (focusedElement == null ? false : widget.getElement()
.isOrHasChild(focusedElement));
}
// Caption text